home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / gdb / gdb_18s.zoo / printcmd.c < prev    next >
C/C++ Source or Header  |  1992-03-25  |  39KB  |  1,528 lines

  1. /* Print values for GNU debugger GDB.
  2.    Copyright (C) 1986, 1987, 1988 Free Software Foundation, Inc.
  3.  
  4. GDB is distributed in the hope that it will be useful, but WITHOUT ANY
  5. WARRANTY.  No author or distributor accepts responsibility to anyone
  6. for the consequences of using it or for whether it serves any
  7. particular purpose or works at all, unless he says so in writing.
  8. Refer to the GDB General Public License for full details.
  9.  
  10. Everyone is granted permission to copy, modify and redistribute GDB,
  11. but only under the conditions described in the GDB General Public
  12. License.  A copy of this license is supposed to have been given to you
  13. along with GDB so you can know your rights and responsibilities.  It
  14. should be in a file named COPYING.  Among other things, the copyright
  15. notice and this notice must be preserved on all copies.
  16.  
  17. In other words, go ahead and share GDB, but don't try to stop
  18. anyone else from sharing it farther.  Help stamp out software hoarding!
  19. */
  20.  
  21. #include <stdio.h>
  22. #include "defs.h"
  23. #include "param.h"
  24. #include "frame.h"
  25. #include "symtab.h"
  26. #include "value.h"
  27. #include "expression.h"
  28.  
  29. struct format_data
  30. {
  31.   int count;
  32.   char format;
  33.   char size;
  34. };
  35.  
  36. /* Last specified output format.  */
  37.  
  38. static char last_format = 'x';
  39.  
  40. /* Last specified examination size.  'b', 'h', 'w' or `q'.  */
  41.  
  42. static char last_size = 'w';
  43.  
  44. /* Default address to examine next.  */
  45.  
  46. static CORE_ADDR next_address;
  47.  
  48. /* Last address examined.  */
  49.  
  50. static CORE_ADDR last_examine_address;
  51.  
  52. /* Contents of last address examined.
  53.    This is not valid past the end of the `x' command!  */
  54.  
  55. static value last_examine_value;
  56.  
  57. /* Number of auto-display expression currently being displayed.
  58.    So that we can deleted it if we get an error or a signal within it.
  59.    -1 when not doing one.  */
  60.  
  61. int current_display_number;
  62.  
  63. #ifdef atarist
  64. extern int gcc_mshort;
  65. #endif
  66. static void do_one_display ();
  67.  
  68. void do_displays ();
  69. void print_address ();
  70. void print_scalar_formatted ();
  71.  
  72.  
  73. /* Decode a format specification.  *STRING_PTR should point to it.
  74.    OFORMAT and OSIZE are used as defaults for the format and size
  75.    if none are given in the format specification.
  76.    If OSIZE is zero, then the size field of the returned value
  77.    should be set only if a size is explicitly specified by the
  78.    user.
  79.    The structure returned describes all the data
  80.    found in the specification.  In addition, *STRING_PTR is advanced
  81.    past the specification and past all whitespace following it.  */
  82.  
  83. struct format_data
  84. decode_format (string_ptr, oformat, osize)
  85.      char **string_ptr;
  86.      char oformat;
  87.      char osize;
  88. {
  89.   struct format_data val;
  90.   register char *p = *string_ptr;
  91.  
  92.   val.format = '?';
  93.   val.size = '?';
  94.   val.count = 1;
  95.  
  96.   if (*p >= '0' && *p <= '9')
  97.     val.count = atoi (p);
  98.   while (*p >= '0' && *p <= '9') p++;
  99.        
  100.   /* Now process size or format letters that follow.  */
  101.  
  102.   while (1)
  103.     {
  104.       if (*p == 'b' || *p == 'h' || *p == 'w' || *p == 'g')
  105.     val.size = *p++;
  106.       else if (*p >= 'a' && *p <= 'z')
  107.     val.format = *p++;
  108.       else
  109.     break;
  110.     }
  111.  
  112.   /* Make sure 'g' size is not used on integer types.
  113.      Well, actually, we can handle hex.  */
  114.   if (val.size == 'g' && val.format != 'f' && val.format != 'x')
  115.     val.size = 'w';
  116.  
  117.   while (*p == ' ' || *p == '\t') p++;
  118.   *string_ptr = p;
  119.  
  120.   /* Set defaults for format and size if not specified.  */
  121.   if (val.format == '?')
  122.     {
  123.       if (val.size == '?')
  124.     {
  125.       /* Neither has been specified.  */
  126.       val.format = oformat;
  127.       val.size = osize;
  128.     }
  129.       else
  130.     /* If a size is specified, any format makes a reasonable
  131.        default except 'i'.  */
  132.     val.format = oformat == 'i' ? 'x' : oformat;
  133.     }
  134.   else if (val.size == '?')
  135.     switch (val.format)
  136.       {
  137.       case 'a':
  138.       case 's':
  139.     /* Addresses must be words.  */
  140.     val.size = osize ? 'w' : osize;
  141.     break;
  142.       case 'f':
  143.     /* Floating point has to be word or giantword.  */
  144.     if (osize == 'w' || osize == 'g')
  145.       val.size = osize;
  146.     else
  147.       /* Default it to giantword if the last used size is not
  148.          appropriate.  */
  149.       val.size = osize ? 'g' : osize;
  150.     break;
  151.       case 'c':
  152.     /* Characters default to one byte.  */
  153.     val.size = osize ? 'b' : osize;
  154.     break;
  155.       default:
  156.     /* The default is the size most recently specified.  */
  157.     val.size = osize;
  158.       }
  159.  
  160.   return val;
  161. }
  162.  
  163. /* Print value VAL on stdout according to FORMAT, a letter or 0.
  164.    Do not end with a newline.
  165.    0 means print VAL according to its own type.
  166.    SIZE is the letter for the size of datum being printed.
  167.    This is used to pad hex numbers so they line up.  */
  168.  
  169. static void
  170. print_formatted (val, format, size)
  171.      register value val;
  172.      register char format;
  173.      char size;
  174. {
  175.   int len = TYPE_LENGTH (VALUE_TYPE (val));
  176.  
  177.   if (VALUE_LVAL (val) == lval_memory)
  178.     next_address = VALUE_ADDRESS (val) + len;
  179.  
  180.   switch (format)
  181.     {
  182.     case 's':
  183.       next_address = VALUE_ADDRESS (val)
  184.     + value_print (value_addr (val), stdout, 0);
  185.       break;
  186.  
  187.     case 'i':
  188.       next_address = VALUE_ADDRESS (val)
  189.     + print_insn (VALUE_ADDRESS (val), stdout);
  190.       break;
  191.  
  192.     default:
  193.       if (format == 0
  194.       || TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_ARRAY
  195.       || TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_STRUCT
  196.       || TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_UNION)
  197.     value_print (val, stdout, format);
  198.       else
  199.     print_scalar_formatted (VALUE_CONTENTS (val), VALUE_TYPE (val),
  200.                 format, size, stdout);
  201.     }
  202. }
  203.  
  204. /* Print a scalar of data of type TYPE, pointed to in GDB by VALADDR,
  205.    according to letters FORMAT and SIZE on STREAM.
  206.    FORMAT may not be zero.  Formats s and i are not supported at this level.
  207.  
  208.    This is how the elements of an array or structure are printed
  209.    with a format.  */
  210.  
  211. void
  212. print_scalar_formatted (valaddr, type, format, size, stream)
  213.      char *valaddr;
  214.      struct type *type;
  215.      char format;
  216.      int size;
  217.      FILE *stream;
  218. {
  219.   long val_long;
  220.   int len = TYPE_LENGTH (type);
  221.  
  222.   if (size == 'g' && sizeof (long) < 8
  223.       && format == 'x')
  224.     {
  225.       /* ok, we're going to have to get fancy here.  Assumption: a
  226.          long is four bytes.  FIXME.  */
  227.       unsigned long v1, v2, tmp;
  228.  
  229.       v1 = unpack_long (builtin_type_long, valaddr);
  230.       v2 = unpack_long (builtin_type_long, valaddr + 4);
  231.  
  232.       switch (format)
  233.     {
  234.     case 'x':
  235.       fprintf_filtered (stream, "0x%08x%08x", v1, v2);
  236.       break;
  237.     default:
  238.       error ("Output size \"g\" unimplemented for format \"%c\".",
  239.          format);
  240.     }
  241.       return;
  242.     }
  243.       
  244.   val_long = unpack_long (type, valaddr);
  245.  
  246.   /* If value is unsigned, truncate it in case negative.  */
  247.   if (format != 'd')
  248.     {
  249.       if (len == sizeof (char))
  250.     val_long &= (1 << 8 * sizeof(char)) - 1;
  251.       else if (len == sizeof (short))
  252.     val_long &= (1 << 8 * sizeof(short)) - 1;
  253.       else if (len == sizeof (long))
  254.     val_long &= (unsigned long) - 1;
  255.     }
  256.  
  257.   switch (format)
  258.     {
  259.     case 'x':
  260.       if (!size)
  261.     {
  262.       /* no size specified, like in print.  Print varying # of digits. */
  263.       fprintf_filtered (stream, "0x%lx", val_long);
  264.     }
  265.       else
  266.       switch (size)
  267.     {
  268.     case 'b':
  269.       fprintf_filtered (stream, "0x%02x", val_long);
  270.       break;
  271.     case 'h':
  272.       fprintf_filtered (stream, "0x%04x", val_long);
  273.       break;
  274.     case 'w':
  275.       fprintf_filtered (stream, "0x%08x", val_long);
  276.       break;
  277.     case 'g':
  278.       fprintf_filtered (stream, "0x%016x", val_long);
  279.       break;
  280.     default:
  281.       error ("Undefined output size \"%c\".", size);
  282.     }
  283.       break;
  284.  
  285.     case 'd':
  286.       fprintf_filtered (stream, "%d", val_long);
  287.       break;
  288.  
  289.     case 'u':
  290.       fprintf_filtered (stream, "%u", val_long);
  291.       break;
  292.  
  293.     case 'o':
  294.       if (val_long)
  295.     fprintf_filtered (stream, "0%o", val_long);
  296.       else
  297.     fprintf_filtered (stream, "0");
  298.       break;
  299.  
  300.     case 'a':
  301.       print_address (val_long, stream);
  302.       break;
  303.  
  304.     case 'c':
  305.       value_print (value_from_long (builtin_type_char, val_long), stream, 0);
  306.       break;
  307.  
  308.     case 'f':
  309.       if (len == sizeof (float))
  310.     type = builtin_type_float;
  311.       if (len == sizeof (double))
  312.     type = builtin_type_double;
  313. #ifdef IEEE_FLOAT
  314.       if (is_nan (unpack_double (type, valaddr)))
  315.     {
  316.      printf_filtered ("Nan");
  317.       break;
  318.     }
  319. #endif
  320.       fprintf_filtered (stream, "%g", unpack_double (type, valaddr));
  321.       break;
  322.  
  323.     case 0:
  324.